home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / cabomsrc.lha / CaBoom / smakefile < prev   
Makefile  |  1995-08-24  |  352b  |  23 lines

  1. #
  2. # Makefile for CaBoom
  3. #
  4. #
  5.  
  6. OBJS= CaBoom.o
  7.  
  8. CaBoom: $(OBJS) 
  9.    sc NOCHECKABORT link to CaBoom with <<
  10. $(OBJS)
  11. <
  12.  
  13. CaBoom.o: CaBoom.c scoptions INCLUDE:CaBoom.gst
  14.     sc CaBoom.c GST=INCLUDE:CaBoom.gst NOLINK
  15.  
  16. INCLUDE:CaBoom.gst: gst.c scoptions smakefile
  17.     sc gst.c MAKEGST=INCLUDE:CaBoom.gst IGNORE=105 NOOPTIMIZE
  18.     delete gst.o
  19.  
  20. dist:
  21.     execute makedist
  22.  
  23.